/* General Styles */
body {
   

    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Raleway", sans-serif;
    
    background-color: rgb(244,245,255);
   
}
.raleway-unique {
    font-family: "Raleway", sans-serif;

    font-weight: 200; /* Example weight, you can change it as needed */
    font-style: normal;
  }

a {
    text-decoration: none;
    color: inherit;
}

.navbar {
    background-color: #fdfeff;
    color: rgb(5, 5, 5);
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 999;
}

.navbar .logo {
    font-size: 1.5rem;
    font-weight: bold;
}

.navbar ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.navbar ul li {
    position: relative;
}

.navbar ul li a {
    font-size: large;
    color: #060606;
    text-decoration: none;
    padding: 0.5rem 1rem;
    display: block;
    transition: color 0.3s ease;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  
}

.navbar ul li a:hover {
    color: #e87a05;
}

/* Add caret to dropdown */
.navbar ul li.dropdown > a::after {
    content: '\f0d7'; /* Font Awesome down arrow (caret) */
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

.navbar ul li ul {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fbfcfd;
    display: none;
    list-style: none;
    z-index: 998;
}

.navbar ul li:hover ul {
    display: block;
}

.navbar ul li ul li a {
    padding: 0.5rem 1rem;
    width: 200px;
    text-align: left;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: rgb(12, 12, 12);
}

@media (max-width: 768px) {
    .navbar ul {
        flex-direction: column; /* Keep this to stack items vertically */
        position: absolute;
        top: 70%;
        left: 0;
        background-color: #fdfefe;
        color: #000;
        width: 100%;
    
        display: none;
        z-index: 100;
        padding: 1rem 0; /* Add padding for better spacing */
    }

    .navbar ul.active {
        display: flex;
        flex-direction: column; /* Ensure items stack vertically */
        align-items: flex-start; /* Align items to the left */
    }

    .navbar ul li {
        width: 100%; /* Make each item full width */
    }

    .navbar ul li a {
        width: 100%; /* Make links full width for easier clicking */
        text-align: left; /* Align text to the left */
    }

    .navbar ul li ul {
        position: static; /* Ensure dropdowns are aligned properly */
    }

    .navbar ul li ul li a {
        padding: 0.5rem 1rem; /* Keep padding for dropdowns */
    }

    .menu-toggle {
        display: block;
    }
}



.section {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #f50;
    padding: 10px;
}
.text {
    color: white;
    font-size: 20px;
    margin-right: 20px;
}
.button {
    background-color: white;
    color: #f50;
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s;
}
.button:hover {
    background-color: #ff7043;
}
@media (max-width: 600px) {
    .text {
        font-size: 16px;
    }
    .button {
        font-size: 16px;
        padding: 8px 16px;
    }
}

/* Navbar Styles */

/* Hero Section Styles */

.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

/* Green overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(78,90,246, 0.8); /* Semi-transparent green overlay */
    z-index: 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-content h1 {
    font-size: 40px;
    margin-bottom: 1rem;
    
    font-family: "Raleway", sans-serif;
  
}

.hero-content p {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: "Raleway", sans-serif;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
  

}

.btn {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background-color: #ff6347;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #ff4500;
}

/* Responsive Design */

@media (max-width: 768px) {
    
    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }

    .btn {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        font-size: 0.8rem;
        padding: 8px 16px;
    }
}




@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    
    .hero-content h1 {
        transform: translateY(-20px);
        font-size: 2.5em;
    }
    .hero-content p {
        transform: translateY(-20px);
        font-size: 1.2em;
    }
}

@media (max-width: 768px) {

    .hero-section{min-height: 50vh;}
    .hero{
        height: 30vh;
    }
    .hero-content h1 {
        transform: translateY(-40px);
        font-size: 2em;
    }
    .hero-content p {
        transform: translateY(-40px);
        font-size: 1.1em;
    }
    .hero-content button {
        transform: translateY(-40px);
        padding: 10px 25px;
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .hero-section{
        min-height: 50vh;
    }
    
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
    .hero-content button {
        padding: 8px 20px;
        font-size: 0.9em;
    }
}



  













/* Responsive Styles */

/* Animation Styles */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Styles */

/* Tablets (Portrait, 768px and up) */
/* Tablets (Portrait, 768px and up) */
@media (max-width: 768px) {
    
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
   
   
}
/* Mobile Devices (Portrait, 480px and up) */
@media (max-width: 480px) {
    *, *::before, *::after {
        box-sizing: border-box;
      } /* for removing sidebar scrolling*/
  
    .hero{
        margin-bottom: 270px;
    }
    .hero-section{
        height: 30vh;
        display: flex;  
        flex-direction: column;  
        justify-content: flex-start;
       
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.9rem;
    }

    .hero-content {
        margin-top: 150px;
    }

    .cta-button {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .hero-image {
        height: 200px;
    }
    .a{
        margin-top: 40px;
    }}


    

  
  

/*1st section */
  .value-proposition-section {
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 50px;
    max-width: 1200px;
   
  
}

.image-content1 img {
    
    max-width: 550px;
    height: auto;
    background-color: #ccc;
    margin-right: 20px;
}

.text-content {
    flex: 1;
    padding-right: 30px;
}

.text-content h1 {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    color: rgb(254, 74, 10);
    
font-family: "Raleway", sans-serif;
}

.text-content p {
    font-size: 1.4em;
    text-align: justify;
    line-height: 1.6;
    color: black;
    font-weight: 400;
font-family: "Raleway", sans-serif;
    margin-bottom: 20px;
   
}

.contact-info {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 10px;
}

.image-content {
    flex: 1;
    display: flex;
    justify-content: center;
}

.image-content img {
    
    max-width: 600px;
    height: auto;
    background-color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .value-proposition-section {
        flex-direction: column;
        width: 80%;
        text-align: center;
        justify-content: center;
       margin-left: 40px; 
       
       
    }

    .text-content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .image-content img {
        max-width: 300px;
    }
    .image-content1 img {
    
        max-width: 250px;
        
    }
}

@media (max-width: 480px) {
    .text-content h1 {
        margin-top: 10px;
        font-size: 1.2rem;
    }

    .text-content p {
        font-size: 1rem;
        text-align: center;

    }

    .image-content img {
        max-width: 100%;
    }
}


/* General section styling */
.solution-section {
    padding: 50px 20px;
   
    text-align: center;
    width: 80%;
    margin: 0 auto;
}

.solution-section h2 {
    font-size: 25px;
    color:rgb(254,74,10);
    font-weight: 600;
    
    font-family: "Raleway", sans-serif;
    margin: 40px auto;
}

.solution-section p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

/* Grid layout for solutions */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns by default */
    gap: 30px;
    justify-items: center;
}

/* Solution box styles */
.solution-box {
    background-color: #fff;
    padding: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    width: 100%;
    max-width: 280px;
    text-align: center;
}

.solution-box i {
    font-size: 40px;
    color: rgba(78,90,246,0.7); /* Icon color */
    margin-bottom: 15px;
}

.solution-box h3 {
    font-size: 20px;
    
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    color: #333;
    margin-bottom: 10px;
}

.solution-box p {
    font-weight: 400;
    font-family: "Raleway", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive Styles */

/* For large tablets (below 1024px) */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns for tablets */
    }

    .solution-section h2 {
        font-size: 24px;
    }

    .solution-section p {
        font-size: 15px;
    }
}

/* For small tablets and mobile (below 768px) */
@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .solution-section h2 {
        font-size: 22px;
    }

    .solution-section p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .solution-grid {
        grid-template-columns: 1fr; /* Single column for mobile */
    }

    .solution-section h2 {
        font-size: 22px;
    }

    .solution-section p {
        font-size: 10px;
    }
}



.iot-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
 
    margin: 10px auto;
    max-width: 1200px;
}

.iot-content {
    flex: 1;
    text-align: left;
    padding: 20px;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.iot-content h2 {
    color: rgb(254, 74, 10);
    font-size: 25px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
    text-align: left;
}

.iot-content ul {
    list-style-type: none;
    padding: 0;
}

.iot-content ul li {
    font-size: 18px;
    margin: 10px 0;
    display: flex;
    align-items: center;
    font-weight: 400;
    font-family: "Raleway", sans-serif;
}

.iot-content ul li i {
    margin-right: 10px;
    color: rgb(254, 74, 10);
}

.iot-image {
    flex: 1;
    text-align: center;
}

.iot-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .iot-section {
        flex-direction: column;
        text-align: center;
    }

    .iot-content {
        padding: 10px;
    }

    .iot-image {
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .iot-content h2 {
        font-size: 24px;
    }

    .iot-content ul li {
        font-size: 16px;
    }

    .iot-image img {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .iot-content h2 {
        font-size: 22px;
        text-align: center;
    }

    .iot-content ul li {
        font-size: 14px;
      
    }

    .iot-image img {
        width: 80%;
    }
}


.iot-network {
    padding: 50px;
    background-color: #f7f8fa;
    text-align: center;
}

.iot-network h2 {
    font-size: 25px;
    color: #fe4a0a;
    margin-bottom: 30px;
    font-family: "Raleway", sans-serif;
    text-align: left;
}

.iot-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.grid-item {
    background-color: white;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: left;
    width: 100%;
    max-width: 500px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.grid-item:hover {
    transform: translateY(-10px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.grid-item i {
    font-size: 40px;
    color: rgb(78,90,246);
    margin-bottom: 15px;
}

.grid-item h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Raleway', sans-serif;
}

.grid-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .iot-grid {
        grid-template-columns: 1fr;
        grid-gap: 30px;
    }

    .grid-item {
        max-width: 100%;
    }

    .iot-network h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .iot-network h2 {
        font-size: 24px;
    }

    .grid-item h3 {
        font-size: 20px;
    }

    .grid-item p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .iot-network h2 {
        font-size: 22px;
    }

    .grid-item h3 {
        font-size: 18px;
    }

    .grid-item p {
        font-size: 12px;
    }

    .grid-item i {
        font-size: 36px;
    }
}



.iot-service-management {
    padding: 60px 20px;
    background-color: #f5f7fa;
}

.service-container {
    display: flex;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.service-image-wrapper {
    flex: 1;
    max-width: 50%; /* Adjust as needed */
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    border-radius: 10px;
}

.service-description {
    flex: 1;
    padding-left: 20px; /* Space between image and services */
}

.iot-service-management h2 {
    font-size: 25px;
    color: rgb(254, 74, 10);
    margin-bottom: 20px;
    font-weight: 700;
    font-family: "Raleway", sans-serif;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 6px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 10px 15px rgba(0, 0, 0, 0.2);
}

.service-icon {
    margin-right: 20px;
}

.service-icon i {
    font-size: 48px;
    color: rgb(78, 90, 246);
}

.service-card h3 {
    font-size: 22px;
    color: #333;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: "Raleway", sans-serif;
}

.service-card p {
    font-size: 16px;
    color: #1b1a1a;
    padding: 0 8px;
    line-height: 1.5;
    font-family: "Raleway", sans-serif;
    max-width: 90%; /* Added to control width on mobile */
    margin: 0 auto; /* Center align the text */
}

@media (max-width: 768px) {
    .service-card p {
        font-size: 14px; /* Adjust font size for better readability on mobile */
    }
}

@media (max-width: 480px) {
    .service-card p {
        font-size: 12px; /* Further adjust font size for very small screens */
        line-height: 1.4; /* Tighter line height for smaller screens */
    }
}

@media (max-width: 1024px) {
    .service-container {
        flex-direction: column;
        align-items: center;
    }

    .service-image-wrapper {
        max-width: 100%;
    }

    .service-description {
        padding-left: 0;
        width: 100%;
        text-align: center;
    }

    .iot-service-management h2 {
        margin-bottom: 20px;
    }

    .service-list {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .iot-service-management h2 {
        font-size: 28px;
    }

    .service-card h3 {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .iot-service-management h2 {
        font-size: 24px;
    }

    .service-card h3 {
        font-size: 18px;
    }

    .service-icon i {
        font-size: 36px;
    }
}




.managed-services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.services-info {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.services-info h2 {
    font-size: 25px;
    color: rgb(254, 74, 10);
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
}

.services-info p {
    font-size: 1.2em;
    color: black;
    margin-bottom: 20px;
    font-family: "Raleway", sans-serif;
    font-weight: 500;
}

.services-info ul {
    list-style-type: none;
    padding: 0;
}

.services-info ul li {
    font-size: 1.1em;
    background-color: #e0e0e0;
    margin: 10px 0;
    padding: 10px;
    border-left: 5px solid rgb(78,90,246);
}

.services-image {
    flex: 1;
    padding: 20px;
    box-sizing: border-box;
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .managed-services-section {
        flex-direction: column;
    }

    .services-info h2 {
        font-size: 2em;
    }

    .services-info ul li {
        font-size: 1em;
    }

    .services-info p {
        font-size: 1em;
    }

    .services-image img {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-info h2 {
        font-size: 1.8em;
    }

    .services-info ul li {
        font-size: 0.9em;
    }

    .services-info p {
        font-size: 0.9em;
    }
}


.security-services-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
   
}

.services-heading {
    text-align: center;
    margin-bottom: 40px;
}

.services-heading h2 {
    font-size: 25px;
    color: rgb(254,74,10);
}

/* Card Grid Layout */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 20px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.service-icon {
    font-size: 3em;
    color: rgba(78,90,246,0.7);
    margin-bottom: 15px;
}

.service-card h3 {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 1em;
    color: #555;
}

/* Image Banner for Security Services */
.services-image-banner {
    margin-top: 40px;
    text-align: center;
}

.services-image-banner img {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.services-image-banner img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-heading h2 {
        font-size: 2em;
    }

    .service-card h3 {
        font-size: 1.3em;
    }

    .service-card p {
        font-size: 0.9em;
    }
}

@media (max-width: 480px) {
    .services-heading h2 {
        font-size: 1.8em;
    }

    .service-card h3 {
        font-size: 1.2em;
    }

    .service-card p {
        font-size: 0.8em;
    }
}


.consulting-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 20px;
  
}

.consulting-header {
    text-align: left;
    margin-bottom: 50px;
}

.consulting-header h2 {
    font-size: 25px;
    color: rgb(254, 74, 10);
    margin-bottom: 20px;
}

.consulting-header p {
    font-size: 1.2em;
    color: #555;
}

/* Flex layout for larger screens */
.consulting-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.consulting-list {
    flex: 1;
}

.consulting-list ul {
    list-style-type: none;
    padding: 0;
}

.consulting-list li {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.consulting-list li i {
    color: #2196F3;
    margin-right: 10px;
    font-size: 1.5em;
}

.consulting-image {
    flex: 1;
    text-align: center;
}

.consulting-image img {
    width: 100%;
    max-width: 600px;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.consulting-image img:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
    .consulting-content {
        flex-direction: column;
    }

    .consulting-header h2 {
        font-size: 2em;
    }

    .consulting-list li {
        font-size: 1.1em;
    }

    .consulting-image img {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .consulting-header h2 {
        font-size: 1.8em;
    }

    .consulting-list li {
        font-size: 1em;
    }

    .consulting-list li i {
        font-size: 1.2em;
    }
}
.training-support-section {
    background-color: white;
    padding: 50px 20px;
    color: #070707;
    width: 80%;
    margin: 40px auto;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.header-content {
    flex: 1;
    max-width: 40%;
    margin-right: 20px;
}

.header-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: rgb(254, 74, 10);
    margin-bottom: 10px;
}

.header-content h1 {
    font-size: 30px;
    font-weight: bold;
    margin-bottom: 30px;
}

.header-content .btn {
    display: inline-block;
    padding: 12px 30px;
    color: #fff;
    border: 1px solid rgb(254, 74, 10);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.header-content .btn:hover {
    background-color: rgb(254, 74, 10);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 20px;
    flex: 1;
    max-width: 55%;
}

.support-card {
    background-color: rgb(254, 74, 10);
    padding: 20px;
    border-radius: 15px;
    transition: background-color 0.3s ease;
}

.support-card h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: white;
}

.support-card p {
    font-size: 14px;
    color: #fefefe;
}

.support-card a {
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
    display: inline-block;
    text-decoration: none;
    transition: color 0.3s ease;
}

.support-card a:hover {
    color: rgb(254, 74, 10);
}

.support-card.highlighted {
    background-color: rgb(254, 74, 10);
    color: #fff;
}

.support-card.highlighted a {
    color: #fff;
}

.support-card:hover {
    background-color: rgb(134, 44, 14);
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .header-content {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .service-list {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .header-content h1 {
        font-size: 20px;
    }

    .header-content .btn {
        padding: 10px 25px;
    }
}